if( ts) {
boolean ps = (mTable.getSelectedRow() != -1);
mRemovePropertyButton.enable( ps);
mUpButton.enable( ps);
mDownButton.enable( ps);
}
mRemovePropertyButton.enable( ps);
int row = mTable.getSelectedRow();
if( row == -1) {
mUpButton.enable( false);
mDownButton.enable( false);
}
else {